pbootcms违禁词替换方法sql
时间 :
2021-10-20
编辑 :admin
select * from `dede_archives` where `description` like '%最%'
select * from "ay_content" where `description` like '%最%'
update "ay_content" set description=replace(description,'最',' ')
select * from "ay_content" where `content` like '%最%'
update "ay_content" set content=replace(content,'最佳','不错的')
update "ay_content" set content=replace(content,'极佳','不错的')
update "ay_content" set content=replace(content,'最','z')